Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | 'use strict' |
||
19 | describe('out', () => { |
||
20 | |||
21 | beforeEach((done) => { |
||
22 | this.input = JSON.parse(JSON.stringify(fixtureInput)) |
||
23 | done() |
||
24 | }) |
||
25 | |||
26 | afterEach((done) => { |
||
27 | delete this.input |
||
28 | done() |
||
29 | }) |
||
30 | |||
31 | describe('out', () => { |
||
32 | it('should not throw an error', (done) => { |
||
33 | out(this.input, (error) => { |
||
34 | expect(error).to.not.exist |
||
35 | done() |
||
36 | }) |
||
37 | }) |
||
38 | |||
39 | }) |
||
40 | }) |
||
41 |